C shell - перевод на арабский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

C shell - перевод на арабский

UNIX SHELL
C Shell; C shell (programming language); Berkeley shell
  • C Shell running on [[Windows Services for UNIX]]
  • 64-bit [[Hamilton C shell]] on a [[Windows 7]] desktop.

C shell         
غلاف السى .
shell script         
  • Editing a [[FreeBSD]] shell script for configuring [[ipfirewall]]
SCRIPT WRITTEN FOR THE SHELL, OR COMMAND LINE INTERPRETER, OF AN OPERATING SYSTEM
User logon scripts; Shell scripts; Unix shell scripting; Shell scripting; Unix script; Shellscript; UNIX shell script; $@; Script file; Shell (programming language)
نص مكتوب للغلاف .
c         
  • Pictogram of a Camel
  • Latin C
  • 15px
  • '''C''' in [[copyright symbol]]
  • Early Etruscan C
  • Etruscan C
  • Greek Gamma
  • Early Greek Gamma
  • Old Latin
  • Phoenician gimel
  • A curled C in the coat of arms of [[Porvoo]]
LETTER OF THE LATIN ALPHABET
Pronunciation of English c; C (letter); Letter c; Letter C; Alphabet: Letter C; C; U+0043; Cee (letter); ASCII 67; ASCII 99; \x43; U+0063
اسْم : الحرف الثالث من الأبجدية الإنكليزية

Определение

C shell
<operating system> (csh) The Unix command-line interpreter shell and script language by William Joy, originating from Berkeley Unix. Unix systems up to around Unix Version 7 only had one shell - the Bourne shell, sh. Csh had better interactive features, notably command input history, allowing earlier commands to be recalled and edited (though it was still not as good as the VMS equivalent of the time). Presumably, csh's C-like syntax was intended to endear it to programmers but sadly it lacks some sh features which are useful for writing shell scripts so you need to know two different syntaxes for every shell construct. A plethora of different shells followed csh, e.g. tcsh, ksh, bash, rc, but sh and csh are the only ones which are provided with most versions of Unix. (1998-04-04)

Википедия

C shell

The C shell (csh or the improved version, tcsh) is a Unix shell created by Bill Joy while he was a graduate student at University of California, Berkeley in the late 1970s. It has been widely distributed, beginning with the 2BSD release of the Berkeley Software Distribution (BSD) which Joy first distributed in 1978. Other early contributors to the ideas or the code were Michael Ubell, Eric Allman, Mike O'Brien and Jim Kulp.

The C shell is a command processor which is typically run in a text window, allowing the user to type and execute commands. The C shell can also read commands from a file, called a script. Like all Unix shells, it supports filename wildcarding, piping, here documents, command substitution, variables and control structures for condition-testing and iteration. What differentiated the C shell from others, especially in the 1980s, were its interactive features and overall style. Its new features made it easier and faster to use. The overall style of the language looked more like C and was seen as more readable.

On many systems, such as macOS and Red Hat Linux, csh is actually tcsh, an improved version of csh. Often one of the two files is either a hard link or a symbolic link to the other, so that either name refers to the same improved version of the C shell. The original csh source code and binary are part of NetBSD.

On Debian and some derivatives (including Ubuntu), there are two different packages: csh and tcsh. The former is based on the original BSD version of csh and the latter is the improved tcsh.

tcsh added filename and command completion and command line editing concepts borrowed from the Tenex system, which is the source of the "t". Because it only added functionality and did not change what already existed, tcsh remained backward compatible with the original C shell. Though it started as a side branch from the original source tree Joy had created, tcsh is now the main branch for ongoing development. tcsh is very stable but new releases continue to appear roughly once a year, consisting mostly of minor bug fixes.